go/types.Checker.varType (method)

18 uses

	go/types (current package)
		builtins.go#L492: 		T := check.varType(arg0)
		builtins.go#L537: 		T := check.varType(call.Args[0])
		decl.go#L468: 		obj.typ = check.varType(typ)
		decl.go#L562: 		rhs = check.varType(tdecl.Type)
		expr.go#L1330: 					typ = &Array{len: -1, elem: check.varType(atyp.Elt)}
		expr.go#L1574: 		T := check.varType(e.Type)
		index.go#L31: 		x.typ = check.varType(e.Orig)
		signature.go#L293: 		typ := check.varType(ftype)
		stmt.go#L294: 			T = check.varType(e)
		struct.go#L112: 		typ = check.varType(f.Type)
		typexpr.go#L145: func (check *Checker) varType(e ast.Expr) Type {
		typexpr.go#L292: 			typ.elem = check.varType(e.Elt)
		typexpr.go#L299: 		typ.elem = check.varType(e.Elt)
		typexpr.go#L320: 		typ.base = check.varType(e.X)
		typexpr.go#L342: 		typ.key = check.varType(e.Key)
		typexpr.go#L343: 		typ.elem = check.varType(e.Value)
		typexpr.go#L381: 		typ.elem = check.varType(e.Value)
		typexpr.go#L544: 		t := check.varType(x)